home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Programming / LEDA / prog / cleanup.amiga next >
Text File  |  1994-11-14  |  496b  |  28 lines

  1. echo "Deleting all .o files"
  2. cd basic
  3.   echo "Entering directory *"basic*"."
  4.   delete >NIL: #?.o
  5.   cd /
  6. cd dict
  7.   echo "Entering directory *"dict*"."
  8.   delete >NIL: #?.o
  9.   cd /
  10. cd prio
  11.   echo "Entering directory *"prio*"."
  12.   delete >NIL: #?.o
  13.   cd /
  14. cd graph
  15.   echo "Entering directory *"graph*"."
  16.   delete >NIL: #?.o
  17.   cd /
  18. cd plane
  19.   echo "Entering directory *"plane*"."
  20.   delete >NIL: #?.o
  21.   cd /
  22. cd graphics
  23.   echo "Entering directory *"graphics*"."
  24.   delete >NIL: #?.o
  25.   cd /
  26.  
  27. echo " Done."
  28.